home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / bin2c / bin2c.readme < prev    next >
Text File  |  2004-08-03  |  1KB  |  41 lines

  1. Introduction
  2. ============
  3.  
  4. This program is meant to help developers to include raw data into C programs so that the developer does not need to open the file to read its content.
  5. The program creates a file, from the raw data file, with the following look:
  6.  
  7. UBYTE <specified variable name>[]={0xXX,0xYY,...};
  8.  
  9. In the source file use #include "<filename of the created destination file>" to get access to the data using the variable name.
  10.  
  11.  
  12. Usage
  13. =====
  14. bin2c can be started both from CLI and Workbench. If no arguments are given when starting from CLI the program opens up the GUI.
  15. The program can also be started with arguments from CLI, and thus does not open a GUI. The program should then be started with "bin2c <raw data file> <destination file> <variable name>".
  16.  
  17.  
  18. Credits
  19. =======
  20.  
  21.  - Menthos/MTS Arts (Viking Technology)
  22.  
  23.  
  24.   /T ______ T\   
  25.   \ Y _  _ Y /   
  26.    Y ______ Y    
  27.    /\_0/\0_/\    
  28.    \   __   /    _  _         ____
  29.   __\      /__   /  \._ _._ _ _  | _  _
  30.  /   \____/   \  \  /||_/||\|/ _ |/_\/
  31.  T\__ _  _ __/T   \/ || \|| |\_/ |\_ \_.
  32.  (  I______I  )
  33.   \ /      \ /      WE STILL FUNCTION!
  34.    Y _)__(_ Y
  35.    (___||___)    
  36.    _|= TT =|_    
  37.   (____||____)
  38.  
  39. -=# bin2c - © 2004 Viking Technology #=-
  40.  
  41.